home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI MineSet 2.5
/
SGI MineSet 2.5.iso
/
dist
/
imgtools.idb
/
usr
/
share
/
src
/
imgtcl
/
rotsharpen.z
/
rotsharpen
Wrap
Text File
|
1998-05-12
|
424b
|
18 lines
#ilTCL
#
# This script is invoked as an image file using any IL based tool like
# imgview. You pass the file name of the input with the syntax:
#
# imgview rotsharpen%<file-name>
#
# You can also optionally pass a rotation angle:
#
# imgview rotsharpen%<file-name>%angle=30
#
ilFileImgOpen img [lindex $argv 1]
if {![info exists angle]} { set angle 0 }
ilRotZoomImg rz img $angle
ilSharpenImg sharp rz
return $sharp